Package pl.wendigo.chrome.api.applicationcache

Contains DevTools Protocol ApplicationCache domain implementation accessible via ApplicationCacheDomain class.

Types

ApplicationCache
Link copied to clipboard
data class ApplicationCache(manifestURL: String, size: Double, creationTime: Double, updateTime: Double, resources: List<ApplicationCacheResource>)
Detailed application cache information.
ApplicationCacheDomain
Link copied to clipboard
class ApplicationCacheDomain : Domain
ApplicationCacheDomain represents ApplicationCache protocol domain request/response operations and events that can be captured.
ApplicationCacheResource
Link copied to clipboard
data class ApplicationCacheResource(url: String, size: Int, type: String)
Detailed application cache resource information.
ApplicationCacheStatusUpdatedEvent
Link copied to clipboard
data class ApplicationCacheStatusUpdatedEvent(frameId: FrameId, manifestURL: String, status: Int) : Event
FrameWithManifest
Link copied to clipboard
data class FrameWithManifest(frameId: FrameId, manifestURL: String, status: Int)
Frame identifier - manifest URL pair.
GetApplicationCacheForFrameRequest
Link copied to clipboard
data class GetApplicationCacheForFrameRequest(frameId: FrameId)
Represents request frame that can be used with ApplicationCache#getApplicationCacheForFrame operation call.
GetApplicationCacheForFrameResponse
Link copied to clipboard
data class GetApplicationCacheForFrameResponse(applicationCache: ApplicationCache)
Represents response frame that is returned from ApplicationCache#getApplicationCacheForFrame operation call.
GetFramesWithManifestsResponse
Link copied to clipboard
data class GetFramesWithManifestsResponse(frameIds: List<FrameWithManifest>)
Represents response frame that is returned from ApplicationCache#getFramesWithManifests operation call.
GetManifestForFrameRequest
Link copied to clipboard
data class GetManifestForFrameRequest(frameId: FrameId)
Represents request frame that can be used with ApplicationCache#getManifestForFrame operation call.
GetManifestForFrameResponse
Link copied to clipboard
data class GetManifestForFrameResponse(manifestURL: String)
Represents response frame that is returned from ApplicationCache#getManifestForFrame operation call.
NetworkStateUpdatedEvent
Link copied to clipboard
data class NetworkStateUpdatedEvent(isNowOnline: Boolean) : Event